home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Komunik / Webscr / HTMLtool / _SETUP.1 / Statusbar Hints.scp < prev    next >
Text File  |  1999-10-03  |  522b  |  17 lines

  1. <HTMLtool>Places a "hint" in the status bar when the mouse moves over a link</HTMLtool>
  2. <!-- Some browsers do not clear the status bar with the OnMouseOut 
  3.      code.  This can be fixed by putting this SCRIPT tag into your
  4.      HEAD tag.
  5. -->
  6. <SCRIPT LANGUAGE="JAVASCRIPT">
  7. <!-- 
  8.   defaultStatus = " "
  9. //-->
  10. </SCRIPT>
  11.  
  12. <!-- Where ever you have a link -->
  13. <A HREF="http://www.lograf.com/" 
  14.    ONMOUSEOVER="window.status='Visit the HTMLtool homepage'; return true" 
  15.    ONMOUSEOUT="window.status=''">link text/image here</A>
  16.  
  17.